Removing uneeded file.
[and.git] / PC^2 / pc2team / problemas resueltos / ser o no ser / #ser.cpp#
blobdeb842abeed72368a7a345c34b15cdaea991c21a
1 #include <iostream>
3 using namespace std;
5 int main(){
6   int n;
7   while (cin >> n && n){
8     cout << n + 1 << endl;
9   }
10   cout << endl;
11   return 0;